#!/bin/sh



/usr/bin/osascript > /dev/null <<EOT

try
tell application "System Events" to set startup_Disk to (name of startup disk)
set msg to "An alias to the Examination application has been placed on the Desktop."

	tell application "Finder" to make new alias at (path to desktop folder) to file (startup_Disk & ":VCAA_2017:CDM Exam 2017:CDM_Exam_2017.app")
on error
	set msg to "An alias to the Examination application could not be placed on the Desktop."

	tell application "Finder" to activate

	tell application "Finder" to display dialog msg buttons {"OK"} default button 1

	tell application "Installer" to activate

end try


EOT





